home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2000 February / february_2000.iso / site building / GoLive 4.0 Tryout / data1.cab / Apps / Modules / JScripts / GlobalScripts / KeyAction.scpt < prev    next >
Encoding:
Text File  |  1999-08-05  |  258 b   |  12 lines

  1. CSKeyAction = new Array;
  2. function CSKeyPress(ev) {
  3.     var code;
  4.     if(IsIE()) code = event.keyCode;
  5.     else code = ev.which;
  6.     var act = CSKeyAction[code];
  7.     if(typeof(act) != "undefined")
  8.         CSAction (new Array(act));
  9. }
  10. document.onkeypress    = CSKeyPress;
  11.  
  12.